:root {
  --primary: #4CAF50;
  --secondary: #8BC34A;
  --accent: #FFC107;
  --bg: #FAFAFA;
  --text: #333333;
  --light: #FFFFFF;
  --dark: #2E7D32;
  --darker-green: #1B5E20;
    --primary: #4CAF50;
  --secondary: #8BC34A;
  --accent: #FFC107;
  --dark-green: #2E7D32;
  --darker-green: #1B5E20;
  --light: #FFFFFF;
  --bg: #FAFAFA;
  --text: #333333;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
html,body {
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Modern Responsive Navbar */
.main-nav {
background: linear-gradient(90deg, var(--light) 0%, var(--dark-green) 100%);
box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
align-items: center;
  justify-content: space-between;
padding: 0 20px;
height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  color: var(--light);
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  letter-spacing: 1px;
  gap: 10px;
  height: 80px;
}

.nav-logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
}
.nav-toggle {
display: none;
background: none;
border: none;
color: var(--light);
font-size: 2.2rem;
cursor: pointer;
}
.nav-list {
  display: flex;
  list-style: none;
gap: 30px;
align-items: center;
}
.nav-link, .dropdown-toggle {
display: flex;
align-items: center;
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
padding: 10px 20px;
border-radius: 6px;
transition: all 0.2s;
font-size: 1.08rem;
background: none;
border: none;
cursor: pointer;
  position: relative;
}
.nav-link:hover, .dropdown-toggle:hover, .nav-link.active, .dropdown-toggle.active {
background: rgba(255,255,255,0.13);
color: var(--accent);
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
display: none;
  position: absolute;
top: 100%;
  left: 0;
min-width: 220px;
  background: var(--darker-green);
border-radius: 10px;
box-shadow: 0 8px 32px rgba(0,0,0,0.18);
margin-top: 4px;
padding: 8px 0;
z-index: 1001;
}
.dropdown.open .dropdown-menu {
display: block;
}
.dropdown-link {
  display: block;
  color: var(--light);
  text-decoration: none;
padding: 14px 24px;
font-size: 1rem;
transition: all 0.2s;
  border-left: 3px solid transparent;
}
.dropdown-link:hover {
background: rgba(255,255,255,0.13);
  border-left: 3px solid var(--accent);
color: var(--accent);
padding-left: 30px;
}
@media (max-width: 992px) {
.nav-toggle {
display: block;
}
.nav-list {
  display: none;
flex-direction: column;
position: absolute;
top: 80px;
left: 0;
width: 100%;
background: var(--darker-green);
box-shadow: 0 8px 32px rgba(0,0,0,0.18);
border-radius: 0 0 18px 18px;
padding: 30px 0 20px 0;
z-index: 999;
animation: slideDown 0.3s cubic-bezier(.4,2,.6,1) forwards;
gap: 0;
}
.nav-list.active {
display: flex;
}
.nav-link, .dropdown-toggle {
width: 100%;
text-align: center;
padding: 16px 0;
font-size: 1.1rem;
}
.dropdown-menu {
position: static;
min-width: 100%;
box-shadow: none;
border-radius: 0 0 18px 18px;
margin-top: 0;
padding: 0;
}
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}

header {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  position: relative;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  position: relative;
  display: inline-block;
}

h1:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  border-radius: 2px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px;
}
@media (max-width: 768px) {
  .gallery {
    padding: 0;
  }
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  height: 260px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #0f1a3d;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.image-desc {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.modal img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: -55px;
  right: -10px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 1.4rem;
  color: #fff;
  max-width: 600px;
  margin: 20px auto 0;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 11;
}

.modal-nav.left {
  left: 10px;
}

.modal-nav.right {
  right: 10px;
}

.modal-nav:hover {
  background: rgba(0,0,0,0.8);
}

        /* Footer */
        footer {
          background: #111;
          position: relative;
          width: 100%;
        }
        
        .footer-content {
          display: flex;
          flex-wrap: wrap;
          padding: 30px 0;
          max-width: 1200px;
          margin: 0 auto;
        }
        
        .footer-section {
          flex: 1;
          min-width: 300px;
          padding: 20px;
        }
        
        .footer-section h2 {
          font-size: 1.125rem;
          font-weight: 600;
          text-transform: uppercase;
          color: #fff;
          margin-bottom: 20px;
          position: relative;
        }
        
        .footer-section h2::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          height: 2px;
          width: 40px;
          background: var(--accent);
        }
        
        .footer-about p {
          color: #d9d9d9;
          text-align: justify;
          line-height: 1.6;
        }
        
        .footer-links {
          margin-top: 20px;
        }
        
        .footer-links a {
          display: inline-block;
          margin-right: 15px;
          color: #d9d9d9;
          text-decoration: none;
          font-size: 1.2rem;
          transition: all 0.3s;
        }
        
        .footer-links a:hover {
          color: var(--accent);
        }
        
        .footer-contact .contact-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 20px;
        }
        
        .contact-icon {
          font-size: 1.2rem;
          background: #1a1a1a;
          height: 45px;
          width: 45px;
          line-height: 45px;
          text-align: center;
          border-radius: 50%;
          margin-right: 15px;
          color: var(--accent);
        }
        
        .contact-text {
          color: #d9d9d9;
          font-size: 1rem;
        }
        
        .footer-links-list {
          list-style: none;
          padding: 0;
        }
        
        .footer-links-list li {
          margin-bottom: 10px;
        }
        
        .footer-links-list a {
          color: #d9d9d9;
          text-decoration: none;
          transition: all 0.3s;
          display: flex;
          align-items: center;
        }
        
        .footer-links-list a:hover {
          color: var(--accent);
          padding-left: 5px;
        }
        
        .footer-links-list i {
          margin-right: 10px;
          color: var(--accent);
        }
        
        .footer-bottom {
          background: #151515;
          padding: 15px 0;
          text-align: center;
        }
        
        .footer-bottom p {
          color: #656565;
          font-size: 0.9rem;
        }
        
        .footer-bottom a {
          color: var(--accent);
          text-decoration: none;
        }
        
        .footer-bottom a:hover {
          text-decoration: underline;
        }

/* Responsive */
@media (max-width: 768px) {
  h1 {
      font-size: 2.5rem;
  }
  
  .gallery {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
  }
  
  .gallery-item {
      height: 200px;
  }
}